home *** CD-ROM | disk | FTP | other *** search
/ Inventor Labs: Transportation / InventorLabs - Transportation.iso / mac / Builders / media / netacess / hminet.dir / 00022_Script_22 < prev    next >
Text File  |  1997-04-04  |  636b  |  19 lines

  1. on EnterFrame
  2.   put the text of cast "theURL" into cast "status"
  3.   put the text of cast "theURL" into theURL
  4.   set error = Browser("OpenURL",theURL )
  5.   
  6.   put "URL sent" into cast "status"
  7.   -- low memory error
  8.   if error = 7 then
  9.     alert "You do not have enough RAM to run The Polar Express CD-ROM and begin Internet access simultaneously. To go online, quit The Polar Express to free up memory. Double-click on the Share the Spirit icon from The Polar Express folder on your hard drive."
  10.   end if
  11.   
  12.   if error <> 0 then
  13.     put error into cast "status"
  14.     alert "Unexpected browser error: " error
  15.   end if
  16. end
  17.  
  18.  
  19.